home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Technotools
/
Technotools (Chestnut CD-ROM)(1993).ISO
/
lang_asm
/
loadems
/
hello.asm
next >
Wrap
Assembly Source File
|
1989-03-11
|
311b
|
28 lines
code segment public
assume cs:code, ds:code
org 100h
start:
jmp begin
msg DB 'Hello World.',10,13,'$'
begin:
push dx
push ds
push cs
pop ds
mov dx, OFFSET msg
mov ah, 09h
int 21h
pop ds
pop dx
retf
code ends
end start